home *** CD-ROM | disk | FTP | other *** search
/ Visual Cafe 3 / Visual Cafe 3.ISO / Vcafe / Source.bin / TransparencyTrick.java < prev    next >
Text File  |  1998-08-21  |  952b  |  26 lines

  1. package symantec.itools.awt;
  2.  
  3. //     07/13/97    LAB    Deprecated because it's not needed in JDK 1.1.
  4. //                    Added version tag.
  5.  
  6. // Implementing this interface allows users of TransparencyTrickUtils to
  7. // avoid drawing lock ups due to one implementor asking another to draw itself
  8. // and that implementor, asking the asker to draw itself, resulting in a lock up
  9.  
  10. /**
  11.  * @deprecated
  12.  * This is no longer used or supported as of JDK 1.1 since the new JDK allows
  13.  * "Lightweight" components which are "Transparent" in nature by default.
  14.  *
  15.  * TransparencyTrick is an interface that simply identifies components using
  16.  * TransparencyTrickUtils. This allows TransparencyTrickUtils to
  17.  * avoid drawing lock-ups due to one implementor asking another to draw itself
  18.  * and that implementor asking the asker to draw itself, resulting in a lock-up
  19.  *
  20.  * @version 1.1, July 14, 1997
  21.  * @author Symantec
  22.  */
  23. public interface TransparencyTrick
  24. {
  25. }
  26.